send type as argument c#

47

send type as argument c# -

object GetColumnValue(string columnName, Type type)
{
    // Here, you can check specific types, as needed:

    if (type == typeof(int)) { // ...

send type as argument c# -

T GetColumnValue<T>(string columnName)
{
    // If you need the type, you can use typeof(T)...

Comments

Submit
0 Comments